home *** CD-ROM | disk | FTP | other *** search
/ Programming a Multiplayer FPS in DirectX / Programming a Multiplayer FPS in DirectX (Companion CD).iso / Paint Shop Pro / PSP900enTR.exe / Data1.cab / _55450B1175494A568AB3C7A0FC6CE537 < prev    next >
Encoding:
Text File  |  2004-08-16  |  673 b   |  26 lines

  1.  
  2. from JascApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': u'Jasc Software, Inc.',
  7.         'Copyright': u'Copyright (c) 2003-2004 Jasc Software, Inc.  All rights reserved.',
  8.         'Description': 'Factory default preset for Pixelate effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_Pixelate():
  14.     return {
  15.         'Symmetric': 1,
  16.         'BlockHeight': 4,
  17.         'GeneralSettings': {
  18.             'AutoActionMode': 0,
  19.             'ExecutionMode': 0
  20.             },
  21.         'BlockWidth': 4
  22.         }
  23.  
  24. def Do(Environment):
  25.     App.Do( Environment, 'Pixelate', Preset_Pixelate())
  26.